home *** CD-ROM | disk | FTP | other *** search
/ CD PowerPlay 10 / CD Powerplay Issue 10 (February 1996).iso / esdemo / install / english / install.scr < prev    next >
Encoding:
Text File  |  1995-02-07  |  1.9 KB  |  95 lines

  1. :start
  2. cd ..\..
  3. godir %1:%4 CantCreate
  4. space %1: 4500 NoMinSpace
  5. rem *** copy files to install destination directory ***
  6. clear
  7. godir %1:%4\data CantCreate
  8. copy %2:data\*.* .
  9. copy %2:install\english\object.str .
  10. copy %2:install\addres.exe .
  11.  
  12. godir %1:%4\sos CantCreate
  13. copy %2:sos\*.* .
  14. godir %1:%4\sset CantCreate
  15. copy %2:sset\*.* .
  16. godir %1:%4\vol CantCreate
  17. copy %2:vol\simsound.vol .
  18. copy %2:vol\simvoice.vol .
  19. copy %2:install\english\demo.vol .
  20. godir %1:%4\install CantCreate
  21. copy %2:install\*.* .
  22. copy %2:install\hdstuff\*.* .
  23. godir %1:%4 CantCreate
  24. copy %2:stuff\*.* .
  25. copy %2:install\english\resource.cfg .
  26. copy %2:install\english\readme .
  27.  
  28. clear
  29. rem *** make executable batch file ***
  30. echo @echo off>demo.bat
  31. echo mode co80>>demo.bat
  32. echo set ALT_DRIVE=%1:>>demo.bat
  33. echo set PREFER_ALT=1>>demo.bat
  34. echo %2:>>demo.bat
  35. echo cd \esdemo>>demo.bat
  36. echo escd>>demo.bat
  37. echo %1:>>demo.bat
  38.  
  39. clear
  40. echo
  41. echo  To play the EarthSiege demo NOW:
  42. echo    Type DEMO [ENTER].
  43. echo
  44. echo  To play LATER:
  45. echo     From the directory of %1:%4,
  46. echo     Type DEMO and press [ENTER].
  47. echo     Make sure the CD is in the same
  48. echo     drive that the game was installed from.
  49. echo
  50. pause
  51.  
  52. rem *** add flic path to resource file ***
  53. echo @echo off >data\addr.bat
  54. echo install\addres FlicPlayer pathFlic flic\ %2 resource.cfg >>data\addr.bat
  55.  
  56. :done
  57. end
  58.  
  59.  
  60.  
  61.  
  62.  
  63. :NoMinSpace
  64. clear
  65. echo
  66. echo There is not enough space on %1: to install EarthSiege!
  67. echo 4.5 megabytes of disk space are necessary.
  68. echo
  69. pause
  70. goto end
  71.  
  72. :NoMedSpace
  73. clear
  74. echo
  75. echo There is not enough space on %1: for the medium sized
  76. echo installation of EarthSiege. 10.5 Megabytes are necessary.
  77. pause
  78. goto start
  79.  
  80. :NoMaxSpace
  81. clear
  82. echo
  83. echo There is not enough space on %1: for the maximum sized
  84. echo installation of EarthSiege. 32 Megabytes are necessary.
  85. pause
  86. goto start
  87.  
  88.  
  89. :CantCreate
  90. alert Unable to create directory
  91. end
  92.  
  93.  
  94.  
  95.